/* General Reset */


html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

body {
    justify-content: flex-end; /* این باعث میشه محتوا در پایین قرار بگیره */
    background: url('img/back.png') no-repeat center center fixed;
    background-size: cover;
    font-family: Tahoma, sans-serif;
    direction: rtl;
    color: white;
}
/* 
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Tahoma, sans-serif;
    direction: rtl;
    background: url("../img/back.png") no-repeat center center fixed;
    background-size: cover;
    color: #fff;
} */

/* Full height container centered */
.ie-fixMinHeight {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main container box */
.main {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}


/* Form input styles */
input[type="text"], input[type="password"] {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    margin: 10px auto;
    border: none;
    border-radius: 10px;
    text-align: center;
    font-size: 16px;
}

/* Submit button style */
input[type="submit"] {
    background-color: #00c087;
    color: white;
    font-weight: bold;
    font-size: 18px;
    border: none;
    border-radius: 15px;
    padding: 12px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #00a573;
}

/* Info and link styles */
p.info {
    margin-top: 20px;
    font-size: 16px;
}

p.info a {
    color: #00ffff;
    text-decoration: underline;
}

/* Animation (optional if supported) */
.animated.fadeIn {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
