* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    height: 100vh;
        background: linear-gradient(135deg, #3b4465, #25d7d9);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.login-box {
    width: 350px;
    background: rgba(255, 255, 255, 0.1);
    
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    color: white;
    text-align: center;
}

h2 {
    margin-bottom: 5px;
    font-size: 26px;
}

.sub {
    font-size: 12px;
    margin-bottom: 25px;
    opacity: 0.8;
}

label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-size: 13px;
}

input {
    width: 100%;
    padding: 8px 5px;
    margin-bottom: 20px;
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    color: white;
    outline: none;
}

button {
    width: 100%;
    padding: 10px;
    background: #aee1ff;
    border: none;
    border-radius: 5px;

    cursor: pointer;
    color: #333;
    font-weight: bold;
    margin-top: 5px;
}

button:hover {
    background: #c7edff;
}

.signup {
    margin-top: 10px;
    font-size: 12px;
    opacity: 0.9;
}

.signup a {
    color: #fff;
    text-decoration: underline;
}
