/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base styles */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    background-color: #ebf4f5;
    overflow-x: hidden;
    min-height: 100vh;
}

/* App Container */
.App {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

/* Main Container */
.main-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 10px;
}

/* Logo Container */
.logo-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-image {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Overlay Content */
.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 360px;
    z-index: 10;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.register-btn,
.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.register-btn i,
.login-btn i {
    font-size: 20px;
}

.register-btn {
    background: linear-gradient(45deg, #2e7d32, #43a047);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.4);
}

.login-btn {
    background: linear-gradient(45deg, #1565c0, #1976d2);
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.4);
}

/* Button Hover Effects */
.register-btn:hover,
.login-btn:hover {
    transform: translateY(-2px);
    filter: brightness(110%);
}

/* Shine Animation */
@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Responsive Design */
@media screen and (min-width: 768px) {
    .main-container {
        max-width: 400px;
    }
}

@media screen and (max-width: 480px) {
    .App {
        padding: 5px;
    }

    .main-container {
        padding: 5px;
    }

    .overlay-content {
        width: 85%;
    }

    .register-btn,
    .login-btn {
        padding: 12px 15px;
        font-size: 14px;
    }

    .register-btn i,
    .login-btn i {
        font-size: 18px;
    }
}

/* Animation Classes */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeIn {
    animation-name: fadeIn;
}

.animate__bounceIn {
    animation-name: bounceIn;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounceIn {
    from { transform: scale(0.3); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
}