/* Importing fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Reseting */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #ecf0f3;
}

.wrapper {
    max-width: 500px;
    min-height: 500px;
    margin: 120px auto;
    padding: 55px 45px 45px 45px;
    background-color: #ecf0f3;
    border-radius: 15px;
    box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #fff;
}

.logo {
    width: 200px;
    margin: auto;
    margin-bottom: 20px;
}

.logo img {
    width: 100%;
    object-fit: cover;
}

.wrapper .name {
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 1.3px;
    padding-left: 10px;
    color: #555;
}

.wrapper .form-field input {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    background: none;
    font-size: 1.1rem;
    color: #666;
    padding: 15px 20px 15px 15px;
}

.wrapper .form-field {
    padding-left: 15px;
    margin-bottom: 25px;
    border-radius: 20px;
    box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #fff;
}

.wrapper .form-field .fas {
    color: #555;
    font-size: 1.1rem;
}

.wrapper .btn {
    box-shadow: none;
    width: 100%;
    height: 50px;
    background-color: #23408F;
    color: #fff;
    border-radius: 25px;
    box-shadow: 3px 3px 3px #b1b1b1, -3px -3px 3px #fff;
    letter-spacing: 1.3px;
    font-size: 1.1rem;
}

.wrapper .btn:hover {
    background-color: #1a3070;
}

.wrapper a {
    text-decoration: none;
    font-size: 0.9rem;
    color: #03A9F4;
}

.wrapper a:hover {
    color: #039BE5;
}

.alert {
    font-size: 0.95rem;
    margin-top: 15px;
}

@media(max-width: 768px) {
    .wrapper {
        max-width: 100%;
        width: 100%;
        min-height: 100vh;
        margin: 0;
        padding: 20px 30px 40px 30px; 
        border-radius: 0;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        justify-content: flex-start; 
        align-items: stretch;
    }

    .logo {
        width: 200px;
        height: auto;
        flex-shrink: 0;
        align-self: center;
        margin-top: 0;        /
        margin-bottom: 20px;
    }
}