#form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    padding: 20px;
}

#mail, #pass {
    font-size: 16px;
    border: 2px solid #ccccff;
    background-color: #ffffff;
    color: #505070;
    border-radius: 5px;
    max-width: 250px;           
    width: 60vw;
    height: 40px;
    box-sizing: border-box;
    padding: 0 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

#mail:focus, #pass:focus {
    outline: none;
    border-color: #aaaaff;
    box-shadow: 0 0 5px rgba(170, 170, 255, 0.3);
}

#passbutton {
    font-family: "Kosugi maru", sans-serif;
    font-size: 14px;
    background-color: #ffffff;
    border: 2px solid #ccccff;
    color: #505070;
    border-radius: 20px;
    cursor: pointer;
    max-width: 100px;
    width: 30vw;
    height: 40px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

#passbutton:hover {
    background-color: #f0f0ff;
    border-color: #aaaaff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(204, 204, 255, 0.5);
}

p {
    margin: 0;
    margin-top: 30px;
    color: #505070;
}

#result {
    margin-top: 10px;
    min-height: 24px; 
    display: flex;
    justify-content: center;
    align-items: center;
}

#result p {
    margin: 0;
    font-size: 14px;
    color: #8888aa;
}