/* Glassmorphism Login Styles */

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    background: url('../img/camintoran.jpg') no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.login-wrapper {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px;
    display: flex;
    gap: 25px;
    width: 100%;
    max-width: 90%;
    min-height: 70%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.logo-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 35px;
    flex: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo-card img {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.logo-card h2 {
    font-size: 26px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.logo-card p {
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

.outer-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 35px;
    flex: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-card h3 {
    font-size: 26px;
    font-weight: 600;
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: white;
    font-weight: 400;
    margin-bottom: 8px;
}

.form-control {
    border-radius: 30px;
    border: none;
    padding: 14px 20px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
}

.form-control::placeholder {
    color: rgba(100, 100, 100, 0.6);
}

.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.gradient-btn {
    display: inline-block;
    background: linear-gradient(90deg, #007bff, #00c6ff);
    color: white;
    font-weight: 600;
    padding: 14px;
    border: none;
    border-radius: 30px;
    text-align: center;
    font-size: 16px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
}

.gradient-btn:hover {
    background: linear-gradient(90deg, #0056b3, #00aaff);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
}

.gradient-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.4);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-check-input {
    border-color: rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.2);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

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

.form-check-label {
    color: white;
    font-size: 14px;
    cursor: pointer;
    margin: 0;
}

.text-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.text-link:hover {
    text-decoration: underline;
}

.text-center a {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .login-wrapper {
        flex-direction: column;
        width: 100%;
        min-height: auto;
    }
}
