@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;
    
}

.logo{
    width: 140px;
    height: 100px;
}
.container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    width: 400px;
    text-align: center;
}

h2 {
    font-size: 28px;
    color: #2d2d69;
    font-weight: bold;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    color: #4a4a6a;
    margin-bottom: 20px;
}

.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-field input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    text-align: right;
}

.input-field input:focus {
    outline: none;
    border-color: #2d2d69;
}

button {
    width: 320px;
    padding: 12px;
    background-color: #e89f45;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

button i {
    margin-right: 8px;
}

button:hover {
    background-color: #d68a3a;
}

.forget-password-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;
}

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