html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
     background:
    radial-gradient(circle at 8% 10%, rgba(67, 240, 193, 0.22), transparent 28rem),
    radial-gradient(circle at 90% 6%, rgba(216, 255, 61, 0.15), transparent 24rem),
    linear-gradient(145deg, #07100f 0%, #0b1416 52%, #10150c 100%);
    color: white;
    font-family: "Manrope", sans-serif;
    font-style: italic;
    overflow-x: hidden;

    
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


form {
    background: rgba(0, 0, 0, 0.35);
    padding: 25px 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    text-align: center;
}


label {
    display: block;
    margin-top: 10px;
    margin-bottom: 5px;
}


input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.25);
    color: white;
    outline: none;
    box-sizing: border-box;
}


button {
    margin-top:20px;
    width: 100%;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.18);
    color: white;
    cursor: pointer;
    font-style: italic;
    transition: background 0.2s, transform 0.1s;
}

button:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}