@font-face {
    font-family: "Almarai";
    src: url("/tenancy/assets/fonts/Almarai/Almarai-Regular.ttf");
}

body {
    font-family: Almarai, sans-serif;
    background: linear-gradient(to right, #ffedea, #d6e4fc);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}


.login-form-layout {
    background: #ffffff;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 32px;
    text-align: center;
    padding: 60px;
}

.welcome-word {
    font-size: 24px;
    font-weight: bold;
    color: #1B2062;
    margin-bottom: 8px;
}

.logo{
    width: 140px;
    height: 100px;
}

.guide-sentence {
    font-size: 16px;
    color: #4B5563;
    font-weight: bold;
    margin-bottom: 32px;
}

.inputs-layout {
    width: 100%;
}

.input-field {
    margin-bottom: 24px;
    text-align: right;
}

.input-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #4B5563;
    font-weight: bold;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    padding: 10px;
    padding-right: 40px; 
    font-size: 14px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-wrapper input:focus {
    border-color: #6366F1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #9CA3AF;
    font-size: 16px;
    transition: color 0.3s ease;
}

.eye-icon:hover {
    color: #6B7280;
}

.forget-password {
    display: inline-block;
    margin-top: 8px;
    font-size: 14px;
    color: #4B5563;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forget-password:hover {
    color: #4F46E5;
}

.login-btn-layout {
    margin-top: 24px;
}

.login-btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background-color: #F59E0B;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #D97706;
}



@media (max-width: 768px) {
    .login-form-layout {
        width: 100%;
        padding: 24px;
    }

    .welcome-word {
        font-size: 20px;
    }

    .guide-sentence {
        font-size: 14px;
    }

    .login-btn {
        font-size: 14px;
        padding: 10px;
    }
}
