@import './reset.css';

@import"https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";


:root {

    --blue: #0071bc;
    --blue-light: #1595e5;
    --silver: #b3b3b3;
    --dark: #071522;
    --dark-2: #0d2235;
    --white: #ffffff;
    --text: #d8e0e7;

}


* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}


body {

    font-family: Poppins, sans-serif;
    background:
        radial-gradient(circle at 15% 15%, rgba(0, 113, 188, .22), transparent 35%),
        radial-gradient(circle at 85% 80%, rgba(0, 113, 188, .12), transparent 35%),
        var(--dark);

    color: white;
    min-height: 100vh;

}


/* HEADER */

header {

    min-height: 120px;

    padding: 25px 8%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    border-bottom: 1px solid rgba(255, 255, 255, .12);

    position: relative;

    z-index: 2;

}


.logo {

    width: 330px;

    max-width: 100%;

}


.logo svg {

    width: 100%;

    height: auto;

    display: block;

}



.login {

    color: white;

    text-decoration: none;

    border: 1px solid var(--blue);

    padding: 14px 30px;

    font-size: 11px;

    letter-spacing: 2px;

    white-space: nowrap;

    transition: .3s;

}


.login:hover {

    background: var(--blue);

}



/* MOBILE HEADER */

@media(max-width:950px) {


    header {

        min-height: auto;

        padding: 25px;

        flex-direction: column;

        align-items: center;

        gap: 22px;

    }

    header:after {

        content: "";

        position: absolute;

        inset: 0;

        background: linear-gradient(180deg,
                rgba(0, 113, 188, .08),
                transparent);

        pointer-events: none;

        z-index: -1;

    }



    .login {

        width: auto;

        padding: 12px 26px;

        font-size: 10px;

        letter-spacing: 1.8px;

    }


}


/* HERO */

.hero {

    max-width: 1200px;

    margin: auto;

    padding: 90px 40px 100px;

    display: grid;

    grid-template-columns: 1fr 500px;

    gap: 90px;

    align-items: center;

}



h1 {

    font-size: 72px;

    letter-spacing: -3px;

    line-height: 1;

    font-weight: 700;

    span {
        display: block;
    }

}


.accent {

    width: 100px;

    height: 4px;

    background: var(--blue);

    margin: 35px 0;

}


.copy {

    color: var(--text);

    font-size: 21px;

    line-height: 1.7;

    max-width: 520px;

    font-weight: 300;

}



/* FORM */

.form-box {

    background:

        linear-gradient(145deg,
            rgba(255, 255, 255, .08),
            rgba(255, 255, 255, .03));

    border: 1px solid rgba(255, 255, 255, .15);

    backdrop-filter: blur(12px);

    padding: 45px;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, .45);

}



.form-title {

    font-size: 24px;

    margin-bottom: 35px;

    font-weight: 500;

}


.field {

    margin-bottom: 22px;

}


label {

    display: block;

    color: var(--silver);

    font-size: 11px;

    letter-spacing: 2px;

    margin-bottom: 8px;

}


input,
textarea,
select {

    width: 100%;

    padding: 16px;

    background: #081b2b;

    border: 1px solid rgba(255, 255, 255, .18);

    color: white;

    font-size: 15px;

}


textarea {

    height: 100px;

}



input:focus,
textarea:focus,
select:focus {

    outline: none;

    border-color: var(--blue);

}





.checkbox {

    display: flex;

    gap: 12px;

    align-items: flex-start;

    margin: 25px 0;

    padding: 18px;

    background: rgba(0, 113, 188, .12);

    border-left: 3px solid var(--blue);

}


.checkbox input {

    width: 18px;

    height: 18px;

    margin-top: 3px;

}



.checkbox span {

    color: #d5dde5;

    font-size: 13px;

    line-height: 1.5;

}




button {
    width: 100%;
    background: transparent;
    cursor: pointer;
    color: white;
    text-decoration: none;
    border: 1px solid var(--blue);
    padding: 15px 32px;
    font-size: 12px;
    letter-spacing: 2px;
    transition: .3s;
}


button:hover {

    background: var(--blue-light);

}



/* FOOTER */

footer {

    border-top: 1px solid rgba(255, 255, 255, .12);

    text-align: center;

    padding: 35px;

    color: #9daab5;

    font-size: 12px;

    line-height: 1.8;

}


footer strong {

    color: white;

}





@media(max-width:950px) {

    .hero {

        grid-template-columns: 1fr;

        padding: 60px 25px;

    }


    h1 {

        font-size: 48px;

    }


    header {

        padding: 25px;

    }


    .logo img {

        width: 230px;

    }


    .form-box {

        padding: 30px;

    }


}