﻿body {
    font-family: Arial, sans-serif;
    height: 100vh;
    margin: 0;
   background-color:antiquewhite;
    background-size: 400% 400%;
    animation: gradientMove 8s ease infinite;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Header */
.header {
    text-align: center;
    margin-top: 10px;
}

.logo-container img {
    width: 170px;
    height: 150px;
    object-fit: cover;
}

.app-name {
    font-size: 24px;
    font-weight: bold;
    color: black;
    margin-top: 5px;
}

/* Login Panel */
.login-panel {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

    .login-panel:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    }

.form-group {
    margin-bottom: 15px;
}

    .form-group label {
        display: block;
        margin-bottom: 5px;
        color: #555;
        font-size: 14px;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-size: 16px;
        transition: border-color 0.3s ease;
        box-sizing: border-box;
    }

       

        .form-group input:focus,
        .form-group select:focus {
            border-color: #ff4e50;
            outline: none;
        }

.login-btn {
    width: 100%;
    background-color: #ff4e50;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

    .login-btn:hover {
        background-color: #ff6a00;
    }

/* Forgot Password */
.forgot-password {
    display: block;
    text-align: right;
    margin-top: -10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #ff4e50;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .forgot-password:hover {
        color: #ff6a00;
    }

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    z-index: 200;
}

.modal {
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal h3 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
}

.modal .form-group {
    margin-bottom: 15px;
}

.modal-btn-container {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.modal-btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: none;
}

.send-btn {
    background-color: #ff4e50;
    color: #fff;
}

    .send-btn:hover {
        background-color: #ff6a00;
    }

.cancel-btn {
    background-color: #ddd;
    color: #333;
}

    .cancel-btn:hover {
        background-color: #ccc;
    }

/* Footer */
.footer {
    text-align: center;
    color: black;
    font-size: 14px;
    margin-bottom: 15px;
}
