body {
    font-family: Arial, sans-serif;
    background-color: #F0FFF0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100vh;
}

form {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
}
.form-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

input[type="text"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
}

input[type="text"]:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

input[type="submit"] {
    background-color: #007bff;
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

.error {
    font-size: 12px;
    color: red;
    display: none;
}
.result-error{
    margin-top: 30px;
    text-transform: capitalize;
    font-size: 1.5em;
    color: red;
    display: none;
    
}
.userinfo {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background-color: #007bff;
    border-radius: 10px;
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 300px;
    margin: 20px auto;
}

.userinfo span {
    display: block;
    font-size: 16px;
    margin: 10px 0;
    font-weight: bold;
    text-transform: uppercase;
}
::placeholder{
    text-align: center;
    opacity: 50%;
}
.text{
    width: 100%;
    float: left;
    margin-bottom: -15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.1em;
    margin-left: 100px;
    font-weight: 500;
    color: rgb(65, 61, 61);
}