/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Logo Styles */
.logo-container {
    display: flex;

    padding: 20px 0;
}

.logo img {
    height: 40px;
}

/* Card Styles */
.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.signup-card {
    background-color: white;
    border-radius: 20px;
    color: #000;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.1);
}

/* Header Styles */
.card-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.signup-subtitle {
    color: black;
    text-align: center;
    margin-bottom: 30px;
}

/* Social Button Styles */
.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #444;
    background-color: transparent;
    color: black;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.social-button svg,
.social-button img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
}

/* Divider Styles */
.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color:black;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #444;
}

.divider-text {
    padding: 0 10px;
}

/* Form Styles */
.form-label {
    display: block;
    margin-bottom: 8px;
    color: white;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #444;
    background-color: white;
    color: #fff;
    margin-bottom: 20px;
}

.form-control::placeholder {
    color: #444;
}

.password-field {
    position: relative;
}

.eye-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color:#444;
    cursor: pointer;
}

/* Button Styles */
.create-button {
    width: 100%;
    padding: 14px;
    background-color: #00c805;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    margin-top: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.create-button:hover {
    background-color: #00a804;
}

/* Auth Links */
.auth-links {
    margin-top: 20px;
    text-align: center;
    color: black;
}

.auth-links p {
    margin-bottom: 5px;
}

.auth-links a {
    color: #00c805;
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    text-align: center;
    color: #aaa;
    padding: 20px;
    font-size: 14px;
}

/* Media Queries */
@media (max-width: 768px) {
    .signup-card {
        padding: 30px;
        margin: 20px;
        background-color: #111;
    }

    .card-title {
        font-size: 28px;
        color: white;
    }

    .signup-subtitle {
        font-size: 14px;
        color: white;
    }

    .social-buttons {
        gap: 10px;
        color: white;
    }

    .social-button {
        padding: 10px;
        font-size: 14px;
        color: white;
    }

    .create-button {
        padding: 12px;
        color: white;
    }
    .auth-links {

        color: white;
    }
    .form-control {
       
        border: 1px solid #444;
        background-color:#444;
       
    }
    .form-control::placeholder {
        color: white;
    }
    .divider {
       
        color:white;
    }
    
    .divider::before,
    .divider::after {
       
        border-bottom: 1px solid white;
    }
    
    
}

@media (max-width: 480px) {
    .signup-card {
        padding: 20px;
        margin: 10px;
        background-color: #111;
    }

    .form-control {
        padding: 10px;
        color: white;
    }

    .logo img {
        height: 30px;

    }
    .card-title {
        font-size: 28px;
        color: white;
    }

    .signup-subtitle {
        font-size: 14px;
        color: white;
    }

    .social-buttons {
        gap: 10px;
        color: white;
    }

    .social-button {
        padding: 10px;
        font-size: 14px;
        color: white;
    }

    .create-button {
        padding: 12px;
        color: white;
    }
    .auth-links {

        color: white;
    }
    .form-control {
       
        border: 1px solid #444;
        background-color:#444;
       
    }
    .form-control::placeholder {
        color: white;
    }
    .divider {
       
        color:white;
    }
    
    .divider::before,
    .divider::after {
       
        border-bottom: 1px solid white;
    }
}