body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f5f5f5;
}

form {
    background: #fff;
    padding: 20px 50px; 
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 400px; 
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

form h1 {
    margin-top: 20px;
    font-size: 35px;
    color: #333;
}

form input {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
}

form button {
    padding: 12px;
    font-size: 16px;
    color: #fff;
    background-color: rgb(0, 0, 128);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

form button:hover {
    background-color:rgb(11, 11, 255);
}
input:focus {
    outline: none;                                                                   
      border: 2px rgb(0, 0, 128) solid ;
}
form p{
    font-size: 18px;
}
form a{
    color:  rgb(0, 0, 128);
    text-decoration: none;
}


@media (max-width: 480px) {
    form {
        width: 95%;
        padding: 15px 20px; 
    }

    form h1 {
        font-size: 24px;
    }

    form input, form button {
        font-size: 14px;
        padding: 10px;
    }
}

