html,
body {
    height: 100%;
    margin: 0;
}

.fullscreen-row {
    height: 100vh;
}

.container-fluid {
    padding: 0;
}

.login-form {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #f8f9fa;
}

.welcome-column {
    background-color: #10058C;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05), transparent 80%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05), transparent 80%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), transparent 100%);
    background-size: cover, cover, cover, 100%;
    background-blend-mode: soft-light, soft-light, soft-light, normal;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    position: relative;
    padding: 20px;
    color: #fff;
    overflow: hidden;
}

.welcome-column::before,
.welcome-column::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.welcome-column::before {
    top: -50px;
    right: -100px;
    width: 400px;
    height: 400px;
}

.welcome-column::after {
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

.welcome-column h1,
.welcome-column h2,
.welcome-column p {
    position: relative;
}

.btn-primary {
    width: 100%;
    background-color: #27346a;
    border-color: #27346a;
    height: 45px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a254d;
    border-color: #1a254d;
}

@media (max-width: 768px) {
    .welcome-column h1 {
        font-size: 32px;
    }

    .welcome-column h2 {
        font-size: 24px;
    }

    .welcome-column p {
        font-size: 16px;
    }
}

.login-container {
    width: 100%;
    max-width: 700px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-group {
    margin-bottom: 15px;
}

label {
    font-weight: 600;
    color: #27346a;
}

.form-control {
    height: 45px;
    border-radius: 4px;
    border: 1px solid #ced4da;
    padding: 10px;
}

@media (max-width: 768px) {
    .login-container {
        padding: 20px;
        max-width: 90%;
    }
}

.extra-links {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.links-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.registration {
    text-align: center;
}

.registration-label {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.registration-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
}

.link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    color: #27346a;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
    width: 100%;
    border: 1px solid #e5e7eb;
}

.link-item:hover {
    background-color: #f3f4f6;
    color: #1a254d;
    text-decoration: none;
    border-color: #d1d5db;
}

.link-item i {
    font-size: 1rem;
}

.links-divider {
    height: 1px;
    width: 100%;
    background-color: #e5e7eb;
    margin: 0.5rem 0;
}

@media (min-width: 640px) {
    .registration-links {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .link-item {
        width: auto;
    }
}