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

body {
    font-family: 'Athiti', sans-serif;
    background: linear-gradient(135deg, #fff7e6 0%, #ffe6cc 100%);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.index {
    padding-bottom: 80px;
}

body.login {
    align-items: center;
    justify-content: center;
}

.container {
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 50;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
}

.select2-container {
    width: 100% !important;
}

.login-container {
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.input-icon-wrapper {
    position: relative;
}

.input-icon-wrapper i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 1rem;
    color: #9ca3af;
}

.input-icon-wrapper input {
    padding-left: 2.5rem;
}

.error-message {
    padding: 10px;
    background: #ffebee;
    border-radius: 4px;
    margin-bottom: 1rem;
    color: #b71c1c;
    display: none;
}

@media (max-width: 640px) {
    .modal-content {
        margin: 20% auto;
        width: 95%;
    }
}