﻿body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.main-content {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.login-card {
    background-color: #2a2a2a;
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #3a3a3a;
}

.logo-container {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .logo-container img {
        max-width: 300px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

.form-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 16px;
    background-color: #3a3a3a;
    border: 2px solid #4a4a4a;
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

    .form-input:focus {
        outline: none;
        border-color: #539f65;
        box-shadow: 0 0 0 3px rgba(83, 159, 101, 0.1);
    }

    .form-input::placeholder {
        color: #9ca3af;
    }

.btn-primary {
    width: 100%;
    padding: 16px;
    background-color: #539f65;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

    .btn-primary:hover {
        background-color: #4a8f5a;
        transform: translateY(-1px);
    }

.btn-external {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: #3a3a3a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    margin: 0 8px;
    transition: all 0.3s ease;
    border: 1px solid #4a4a4a;
    min-width: 120px;
}

    .btn-external:hover {
        background-color: #4a4a4a;
        color: #ffffff;
        text-decoration: none;
        transform: translateY(-1px);
    }

    .btn-external svg {
        margin-right: 8px;
        width: 20px;
        height: 20px;
    }

.alert {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid;
}

.alert-primary {
    background-color: rgba(83, 159, 101, 0.1);
    border-color: #539f65;
    color: #539f65;
}

.alert-danger {
    background-color: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #ef4444;
}

.alert a {
    color: inherit;
    text-decoration: underline;
}

    .alert a:hover {
        text-decoration: none;
    }

.form-links {
    margin: 15px 0;
    font-size: 14px;
    text-align: center;
}

    .form-links a {
        color: #539f65;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .form-links a:hover {
            color: #4a8f5a;
            text-decoration: underline;
        }

.divider {
    margin: 30px 0;
    text-align: center;
    position: relative;
}

    .divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background-color: #4a4a4a;
    }

    .divider span {
        background-color: #2a2a2a;
        padding: 0 20px;
        color: #9ca3af;
        font-size: 14px;
        position: relative;
        z-index: 1;
    }

.external-login {
    text-align: center;
}

.footer {
    background-color: #000000;
    color: #9ca3af;
    padding: 0;
    border-top: 1px solid #3a3a3a;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

.footer-flex {
    color: white;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    box-sizing: border-box;
}

.footer-left-content {
    text-align: left;
    flex: 1;
   
    line-height: 1.4;
}

.footer-right-content {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer a {
    color: #539f65;
    text-decoration: none;
}

    .footer a:hover {
        text-decoration: underline;
    }
.social-icon {
    color: white;
    background: none;
    border: none;
    padding: 0.5rem;
    text-decoration: none;
    transition: color 0.3s;
    padding-left: 20px;
    /*padding-right: 20px;*/
}

    .social-icon:hover {
        color: #539F65; /* Optional: highlight color on hover */
    }

    .social-icon i {
        font-size: 1.2rem;
    }

    /*SVG*/

    .social-icon.facebook {
        background-image: url('/images/facebook.svg');
        display: inline-block;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .social-icon.instagram {
        background-image: url('/images/instagram.svg');
        display: inline-block;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .social-icon.linkedin {
        background-image: url('/images/linkedin.svg');
        display: inline-block;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .social-icon.tiktok {
        background-image: url('/images/tiktok.svg');
        display: inline-block;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .social-icon.twitter {
        background-image: url('/images/twitter.svg');
        display: inline-block;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .social-icon.youtube {
        background-image: url('/images/Youtube.svg');
        display: inline-block;
        background-size: contain;
        background-repeat: no-repeat;
    }

.text-white {
    color: white !important;
}

.text-decoration-none {
    text-decoration: none !important;
}
