@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --yellow: #F4F456;
    --green: #95FA50;
}
* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    text-decoration: none;
    list-style-type: none;
}
body {
    font-family: "Inter", sans-serif;
    background:
    radial-gradient(circle at 20% 20%, rgba(149, 250, 80, 0.35), transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(244, 244, 86, 0.32), transparent 60%),
    radial-gradient(circle at 50% 90%, rgba(16, 185, 129, 0.22), transparent 65%),
    linear-gradient(135deg, #f8fff0, #f2ffe6);
}
.icon {
    font-family: 'Material Symbols Rounded';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.icon.filled {
    font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    width: 100%;
    max-width: 800px;
    margin: 0.5em auto;
    border-radius: 25px;
    background: linear-gradient(90deg, #95fa5073, #f4f45673, #95fa5073);
    padding: .6em 1em;
    border: 1px solid #00000026;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);

}
header h1 {
    font-weight: 600;
    font-size: 1.9em;
}
header img {
    width: 50px;
}
.header-text {
    font-size: 1em;
    text-align: center;
}
form {
    border: 2px solid #00000029;
    border-radius: 25px;
    width: 100%;
    max-width: 700px;
    gap: 0.9em;
    padding: 1em;
    margin: 3em auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to right,#95FA5063, #F4F45673, #94fa5073);
    backdrop-filter: blur(20px);
}
.form-title {
    width: 100%;
    font-size: 1.2rem;
    font-weight: 700;
    opacity: .8;
}
.form-input {
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid rgb(0, 0, 0);
    border-radius: 20px;
    transition: all 0.3s ease;
}
.form-input:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-color: #2d8659;
}
.form-input input::placeholder {
    color: #2d6b4a;
    opacity: 0.8;
}
.form-input input:focus {
    background: rgba(255, 255, 255, 0.5);
}
.form-input input {
    height: 40px;
    width: 100%;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border: none;
    padding: 0 1em;
    font-family: "Inter", sans-serif;
    font-size: 1.1em;
    text-align: center;
    background: rgba(162, 255, 176, 0.641);
}
.form-input img {
    width: 40px;
    padding: 0.4em;
    background: rgba(165, 255, 162, .5);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}
form textarea {
    width: 100%;
    border-radius: 20px;
    padding: 1em;
    background: rgba(165, 255, 162, 0.45);
    border: 1px solid rgba(0,0,0,0.25);
    margin-top: 2em;
    text-align: center;
    font-size: 1.1em;
    font-family: "Inter", sans-serif;
    transition: all 0.3s ease;
    resize: none;
}
form textarea::placeholder {
    color: #2d6b4a;
    opacity: 0.4;
    text-align: center;
}
form textarea:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border-color: #2d8659;
}
form textarea:focus {
    background: rgba(255, 255, 255, 0.5);
}
.checkbox-group {
    width: 100%;
    margin-top: 1em;
    display: flex;
    flex-direction: column;
    gap: 0.6em;
}

.checkbox-group label {
    display: flex;
    gap: .6em;
    align-items: center;
    background: rgba(165, 255, 162, 0.7);
    border: 1px solid #0003;
    padding: .7em 1em;
    border-radius: 15px;
    cursor: pointer;
    transition: all .2s;
}

.checkbox-group label:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0,0,0,0.15);
}
form button {
    width: 100%;
    max-width: 300px;
    padding: 0.9em 2em;
    font-family: "Inter", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    background: linear-gradient(135deg, var(--green), var(--yellow));
    border: 2px solid #000000;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 0.8em;
}
form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--yellow), var(--green));
}
form button:active {
    transform: translateY(-1px);
    filter: brightness(0.8);
}
.toast {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #222;
    color: white;
    padding: 1em 1.4em;
    border-radius: 12px;
    font-size: 1.1em;
    font-family: "Inter", sans-serif;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    transition: all 0.6s ease;
    z-index: 9999;
    transform: translateX(150%);
}
.toast.show {
    transform: translateX(0);
}
.toast.success {
    background: #2ecc71;
}
.toast.error {
    background: #e74c3c;
}

footer.footer {
    margin: 4em auto 0 auto;
    padding-top: 1em;
    text-align: center;
    background: linear-gradient(90deg, #95fa5073, #f4f45673, #95fa5073);
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    width: 100%;
    max-width: 1300px;
    border: 1px solid rgba(0,0,0,0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3em;
}
.footer-brand img {
    width: 55px;
}
.footer-text {
    margin-top: 0.5em;
    font-weight: 500;
}
.footer-links {
    margin: 1em 0;
    display: flex;
    justify-content: center;
    gap: 1.6em;
}
.footer-links a {
    font-weight: 600;
    color: #0a0a0a;
    transition: opacity .2s ease;
}
.footer-links a:hover {
    opacity: 0.6;
}
.footer-copy {
    margin-top: 1em;
    font-size: 0.9em;
    opacity: 0.7;
}
