*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f3f4f6;
}

/* CONTAINER */

.container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/* HEADER */

.header{
    width:100%;
    height:72px;
    background:#003b7a;

    padding:0 20px;
}

.header-content{
    height:72px;

    display:flex;
    align-items:center;
    justify-content: start;
}

.logo img{
    width:170px;
    filter: brightness(0) invert(1);
}

/* LOGIN */

.login{
    width:100%;
    

    display:flex;
    justify-content:center;

    padding-top:90px;
}

.login-card{
    width:100%;
    max-width:430px;

    background:white;

    border-radius:12px;

    padding:30px 35px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);
}

.login-card h1{
    text-align:center;

    font-size:30px;
    color:#003b7a;

    margin-bottom:35px;
}

/* INPUTS */

.input-group{
    width:100%;
    margin-bottom:22px;

    position:relative;
}

.input-group input{
    width:100%;
    height:54px;

    border:1px solid #d1d5db;

    border-radius:8px;

    padding:0 16px;

    font-size:15px;

    outline:none;

    transition:0.3s;
}

.input-group input:focus{
    border-color:#003b7a;
}

.password-group input{
    padding-right:52px;
}

/* PASSWORD BUTTON */

.toggle-password{
    position:absolute;

    top:50%;
    right:15px;

    transform:translateY(-50%);

    border:none;
    background:none;

    cursor:pointer;

    color:#6b7280;
}

/* BUTTON */

.login-btn{
    width:100%;
    height:54px;

    border:none;
    border-radius:8px;

    background:#003b7a;

    color:white;

    font-size:16px;
    font-weight:600;

    cursor:pointer;

    transition:0.3s;
}

.login-btn:hover{
    background:#002e61;
}

/* COPYRIGHT */

.copyright{
    text-align:center;

    margin-top:25px;

    font-size:14px;
    color:#9ca3af;
}