

.registration-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.registration-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.registration-card:hover {
    transform: translateY(-2px);
}

.card-header {
    background: #007bff;
    color: white;
    text-align: center;
    padding: 2rem;
    border: none;
}

.card-header h3 {
    margin: 0;
    font-weight: 600;
    font-size: 1.8rem;
}

.card-header p {
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.card-body {
    padding: 2.5rem;
}

.form-floating {
    margin-bottom: 1.5rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(248, 249, 250, 0.8);
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    background: white;
}

.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
}

.required {
    color: #dc3545;
}

.btn-register {
    background: #fbbf24;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    color: #000;
}

.btn-register:hover {
    background: #fbbf24;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.input-group-text {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: #6c757d;
}

.input-group .form-control {
    border-radius: 0 8px 8px 0;
}

.input-group:focus-within .input-group-text {
    border-color: #007bff;
    background: #e7f3ff;
    color: #007bff;
}

.optional-field {
    position: relative;
}

.optional-badge {
    position: absolute;
    top: -8px;
    right: 10px;
    background: #28a745;
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    z-index: 10;
}

.login-link {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
    color: #fff;
}

.login-link a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-link a:hover {
    color: #ccc;
}

@media (max-width: 768px) {
    .registration-card {
        margin: 10px;
        border-radius: 15px;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .card-header {
        padding: 1.5rem;
    }
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.login-card {
    background-color: #000000;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 10px 2px rgba(204, 163, 84, 0.45);
    transition: transform 0.3s ease;
    max-width: 500px;
    width: 100%;
}

.login-card:hover {
    transform: translateY(-2px);
}

.card-header {
    background: #000;
    color: white;
    text-align: center;
    padding: 2rem;
    border: none;
}

.card-header h3 {
    margin: 0;
    font-weight: 600;
    font-size: 1.8rem;
}

.card-header p {
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

.card-body {
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control {
	border: 2px solid #e9ecef;
	border-radius: 8px;
	padding: 12px 16px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: #000;
	border: 1px solid rgba(204, 163, 84, 0.45);
	color: #fff;
}
.form-control::placeholder {
  color: #fff;
  opacity: 1; /* Firefox */
}

.form-control::-ms-input-placeholder { /* Edge 12 -18 */
  color: #fff;
}

.form-control:focus {
    outline: none;
    border-color: #ffc107;
    background: #000;
    box-shadow: none;
    color: #fff;
}

.form-control.is-valid {
    border-color: #28a745;
}

.form-control.is-invalid {
    border-color: #dc3545;
}
.form-control.is-invalid:focus {
    background:#000;
}


.input-group {
    position: relative;
}

.input-group .form-control {
    padding-right: 45px;
}

.input-group-text {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #000;
    border: none;
    z-index: 10;
    cursor: pointer;
    color: #6c757d;
}
.input-group-text:focus{
    background: #000;
}

.password-toggle:hover {
    color: #007bff;
}

.btn-login {
    background: #fbbf24;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    color: #000;
    margin-bottom: 1rem;
}

.btn-login:hover:not(:disabled) {
    background: #fbbf24;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-login:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-check {
    margin: 0;
}

.form-check-input {
    border: 2px solid #e9ecef;
    border-radius: 4px;
}

.form-check-input:checked {
    background-color: #007bff;
    border-color: #007bff;
}

.form-check-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.forgot-password {
    color: #fbbf24;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #fff;
    text-decoration: underline;
}

.divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.divider span {
    background: white;
    padding: 0 1rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.social-login {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-social {
    flex: 1;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #495057;
    font-weight: 500;
}

.btn-social:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #495057;
    text-decoration: none;
}

.btn-google:hover {
    border-color: #db4437;
}

.btn-facebook:hover {
    border-color: #1877f2;
}

.signup-link {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #2a2b2c;
}

.signup-link a {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    color: #fff;
    text-decoration: underline;
}

.alert-custom {
    border-radius: 8px;
    border: none;
    margin-bottom: 1.5rem;
}

.loading-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-outline-secondary{
    border-left:none !important;
    border: 1px solid rgba(204, 163, 84, 0.45);
}
.btn-outline-secondary:hover{
    background: none !important;
    border: 1px solid rgba(204, 163, 84, 0.45);
}

.text-muted{
    color:#fff !important;
}


@media (max-width: 768px) {
    .login-card {
        margin: 10px;
        border-radius: 15px;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .card-header {
        padding: 1.5rem;
    }
    
    .remember-forgot {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 0.5rem;
    }
    
    .social-login {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .card-body {
        padding: 1rem;
    }
    
    .card-header {
        padding: 1rem;
    }
}