*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* BODY */
body{
    font-family: Arial, Helvetica, sans-serif;
    min-height:100vh;
    color:white;
    background: linear-gradient(180deg, #314b6d 0%, #355174 100%);

    /* center the box */
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

/* CONTAINER */
.container{
    background:#e7e7e7;
    padding:40px;
    width:100%;
    max-width:420px;
    border-radius:30px;
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

/* LOGO */
.logo{
    text-align:center;
    margin-bottom:12px;
}

.logo img{
    display:block;
    margin:0 auto;
    width:140px;
    max-width:100%;
    height:auto;
}

/* TITLE */
.container h2{
    text-align:center;
    margin-bottom:6px;
    font-size:28px;
    color:#1f2f44;
}

.subtitle{
    text-align:center;
    font-size:14px;
    margin-bottom:20px;
    color:#555;
}

/* LABEL */
label{
    display:block;
    margin-top:12px;
    font-size:14px;
    font-weight:600;
    color:#222;
}

/* INPUT */
input{
    width:100%;
    padding:12px 14px;
    margin-top:5px;
    border-radius:25px;
    border:1px solid #ccc;
    font-size:15px;
    background:white;
}

input:focus{
    outline:none;
    border-color:#2f6fd6;
}

/* BUTTON */
button{
    width:100%;
    margin-top:20px;
    padding:12px;
    border:none;
    border-radius:25px;
    background:#2f6fd6;
    color:white;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    background:#1f55a8;
}

/* SIGNIN */
.signin{
    text-align:center;
    font-size:14px;
    margin-top:15px;
    color:#222;
}

.signin a{
    color:#2f6fd6;
    text-decoration:none;
    font-weight:600;
}

.signin a:hover{
    text-decoration:underline;
}