:root {
    --primary-color: #4e73df;
    --secondary-color: #224abe;
    --success-color: #1cc88a;
    --background-gradient: linear-gradient(135deg, #1e3c72 0%, #1e3c72 1%, #2a5298 100%);
}

body {
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--background-gradient);
}

/* Register Wrapper */
.log-reg-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

/* Register Card */
.log-reg-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

/* Logo Styles */
.log-reg-logo {
    height: 60px;
    object-fit: contain;
}

/* Welcome Text */
.welcome-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Form Elements */
.form-label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.input-group {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.input-group-text {
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
}

.input-group-text i {
    font-size: 1rem;
}

.form-control {
    border: 2px solid #e1e1e1;
    border-left: none;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    height: auto;
    background-color: #f8f9fa;
}

.input-group:focus-within {
    box-shadow: 0 0 0 3px rgba(78, 115, 223, 0.25);
}

.input-group:focus-within .form-control {
    background-color: white;
}

.form-control:focus {
    box-shadow: none;
    border-color: #e1e1e1;
}

/* Button Styles */
.register-btn {
    padding: 0.5rem;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
    position: relative;
    font-size: 1rem;
}

.register-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.register-btn .spinner-border {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Terms and Privacy */
.terms-privacy {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.terms-privacy a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.terms-privacy a:hover {
    text-decoration: underline;
}

/* Footer Links */
.footer-links {
    color: white;

}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 0.5rem;
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Background Animation */
.area {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
    border-radius: 50%;
}

@keyframes animate {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}
.swal-wide {
    width: 200px !important;
    height: 200px !important;
}