﻿/* Importing fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Resetting */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: url('/images/background.jpg');
    background-size: cover; /* Ensures the image covers the entire area */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat;
    
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/*.wrapper {
    max-width: 350px;
    min-height: 500px;
    padding: 40px 30px 30px 30px;
    background-color: #ddeaf5;
    border-radius: 15px;
    box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #fff;
    margin: 0 auto;
}*/
.wrapper {
    max-width: 350px;
    min-height: 500px;
    padding: 40px 30px 30px 30px;
    background-color: #ffe79f;
    border-radius: 15px;
    box-shadow: 0px 1px 1px #cbced1, -2px -4px 8px #fff;
    margin: 0 auto;
}


.logo {
    width: 80px;
    margin: auto;
}

    .logo img {
        width: 100%;
        height: 80px;
        object-fit: cover;
        border-radius: 24px;
        box-shadow: 0px 0px 3px #5f5f5f, 0px 0px 0px 5px #ecf0f3, 8px 8px 15px #a7aaa7, -8px -8px 15px #fff;
    }

.wrapper .name {
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 1.3px;
    padding-left: 10px;
    color: #555;
    text-align: center;
}

.wrapper .form-field input {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    background: none;
    font-size: 1.2rem;
    color: #666;
    padding: 10px 15px 10px 10px;
}

.wrapper .form-field {
    padding-left: 10px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #fff;
}

    .wrapper .form-field .fas {
        color: #555;
    }

.wrapper .btn {
    box-shadow: none;
    width: 100%;
    height: 40px;
    background-color: #03A9F4;
    color: #fff;
    border-radius: 25px;
    box-shadow: 3px 3px 3px #b1b1b1, -3px -3px 3px #fff;
    letter-spacing: 1.3px;
}

    .wrapper .btn:hover {
      /*  background-color: #039BE5;*/
    }

.wrapper a {
    text-decoration: none;
    font-size: 0.8rem;
    color: #03A9F4;
    display: block;
    text-align: center;
    margin-top: 10px;
}

    .wrapper a:hover {
        color: #039BE5;
    }
.wrapper .form-field input {
    width: 100%;
    border: none;
    outline: none;
    background: none;
    font-size: 1.2rem;
    color: #666;
    padding: 10px 15px;
}
/*@media(max-width: 380px) {
    .wrapper {
        max-width: 350px;
        min-height: 500px;
        margin: 0 10px;
        padding: 40px 15px 15px 15px;
        min-height: auto;
    }

    .logo img {
        width: 60px;
        height: 60px;
    }

    .wrapper .name {
        font-size: 1.2rem;
    }

    .wrapper .form-field input {
        font-size: 1rem;
    }

    .wrapper .btn {
        height: 35px;
        font-size: 0.9rem;
    }

    .wrapper a {
        font-size: 0.7rem;
    }
}*/
