* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0d0e14;
    font-family: 'Arial', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    color: white;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow: hidden;
}

canvas {
    display: block; /* Removes any default spacing below the canvas */
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1; /* Places the canvas behind other content */
}

.note {
    padding: 10px 0 20px 0;
}

.container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #cccccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus {
    border-color: white;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: white;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: #cccccc;
    cursor: pointer;
    margin: 0;
    text-transform: none;
    letter-spacing: normal;
}

.checkbox-group a {
    color: white;
    text-decoration: underline;
}

.checkbox-group a:hover {
    text-decoration: none;
}

.btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.btn:active {
    transform: translateY(0);
}

.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.divider span {
    background: rgba(0, 0, 0, 0.9);
    padding: 0 15px;
    color: #cccccc;
    font-size: 0.9rem;
}

.login-link {
    text-align: center;
    margin-top: 20px;
}

.login-link a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

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

@media (max-width: 480px) {
    .container {
        margin: 20px;
        padding: 10px 25px;
    }

    .logo {
        margin-bottom: 10px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }

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

    .form-group input {
        height: 45px;
    }
}