@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700&display=swap');

* {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: #F8F1DE;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: sans-serif;
    overflow: hidden;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 350px;
    margin-top: 40px;
}

.button-container1 {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

button {
    padding: 10px 0;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.1s;
    width: 100%;
}

button:active {
    transform: scale(0.98);
}

.btn-login, .btn-logout {
    background-color: #493628;
    color: #ffffff;
    border-radius: 10px;
    border: none !important;

}

.btn-login:hover, .btn-logout:hover {
    background-color: #35291e;
}

.btn-create {
    background-color: transparent;
    color: #493628;
    border-radius: 10px;
    border: 2px solid #493628;
}

.btn-create:hover {
    background-color: rgba(72, 56, 41, 0.05);
}

.login-box {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.logout-box {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    text-align: center;
    align-content: center;
}

.logout-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #493628;
    margin-top: 30px;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.welcome-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #493628;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.input-group-custom {
    margin-bottom: 20px;
    text-align: left;
}

.input-group-custom label {
    display: block;
    color: #493628;
    font-weight: 400;
    margin-bottom: 8px;
}

.input-group-custom input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 15px;
    border: 1.5px solid #E0D7C6;
    background-color: #FFFFFF;
    outline: none;
    transition: 0.3s;
}

.input-group-custom input:focus {
    border-color: #493628;
}

.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.5;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 14px;
    color: #493628;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.forgot-link {
    color: #493628;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.forgot-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.btn-login-submit {
    background-color: #493628;
    color: white;
    width: 100%;
    padding: 18px;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 25px;
}

.btn-login-submit:hover {
    background-color: #35291e;
}

.btn-login-submit:active {
    transform: scale(0.98);
}

.signup-text {
    color: #7A6C5E;
    font-size: 14px;
}

.signup-text a {
    color: #493628;
    text-decoration: none;
}

.password-wrapper {
    position: relative;
    width: 100%;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    padding-right: 45px !important;
}

.signup-text {
    text-align: center;
    font-size: 14px;
    color: #7A6C5E;
    margin-top: 10px;
}

.login-link, .signup-link {
    color: #493628;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
}

.login-link:hover, .signup-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.btn-back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: transparent;
    border: 1.5px solid #E0D7C6;
    border-radius: 12px;
    cursor: pointer;
    margin-bottom: 30px;
    transition: background 0.2s;
}

.btn-back:hover {
    background-color: #E0D7C6;
    opacity: 0.7;
}

.description-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #7A6C5E;
    line-height: 1.5;
    margin-bottom: 35px;
    max-width: 90%;
}


