/**
Author : Fallen_Devil (WaNdEreR)
Created : 16th Aug, 2020
*/

/* Universal Styles */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
    background: #f2f2f2;
    height: 100%;
}

input, select, button {
    outline: none;
    border: none;
    font-family: inherit;
}

button {
    cursor: pointer;
}

.newContainer-form {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #e6e6e6;
    padding: 15px;
}

.wrap-form {
    width: 100%;
    max-width: 450px;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.form-title {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-sub-title {
    font-size: 16px;
    color: #777;
    text-align: center;
    margin-bottom: 20px;
}

.wrap-input, .wrap-notice {
    position: relative;
    margin-bottom: 20px;
}

.label-input {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #999;
}

.input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.input:focus {
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
    border-radius: 4px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23999" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px 12px;
}

select:focus {
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.login-button {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #E47D8A;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
}

.login-button:hover {
    background-color: #d46576;
}

/* Responsive Adjustments */
@media screen and (max-width: 480px) {
    .wrap-form {
        padding: 20px;
    }

    .form-title {
        font-size: 22px;
    }

    .form-sub-title {
        font-size: 14px;
    }

    .input, select {
        padding: 10px 15px 10px 40px;
        font-size: 14px;
    }

    .login-button {
        padding: 10px;
        font-size: 14px;
    }
}
