body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #fff;
}
.container {
    text-align: center;
    max-width: 390px;
}
.icon {
    font-size: 50px;
    color: #4A90E2;
    margin-bottom: 40px;
}
h1 {
    font-size: 30px;
    font-weight: bolder;
    margin-bottom: 20px;
}
p {
    font-size: 16px;
    color: black;
    margin-bottom: 50px;
}
label {
    display: block;
    text-align: left;
    font-size: 15px;
    margin-bottom: 9px;
}
input[type="email"] {
    width: 100%;
    padding: 15px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-bottom: 60px;
}
button {
    width: 100%;
    padding: 15px;
    font-size: 20px;
    color: #fff;
    background-color: #4A90E2;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-bottom: 15px;
    
}
a {
    display: block;
    margin-bottom: 60px;
    font-size: 16px;
    color: #4A90E2;
    text-decoration: none;
    text-decoration: underline;
}
.hover-button {
    background-color: #4A90E2; /* default background color */
    color: #fff; /* default text color */
    transition: background-color 0.5s, color 0.5s; /* transition duration */
  }
  
  .hover-button:hover {
    background-color: #0f5298; /* hover background color */
    color: #fff; /* hover text color */
  }