body {
    font-family: Arial, sans-serif;
    background: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
hr {
    border-top: 1px solid rgb(185, 185, 185);
}
.container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    padding: 20px;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    color: #000000;
}

.new1 {
    border-top: 1px solid rgb(166, 166, 166);
  }
 
.psmall {font-size: 13px;}  
form {
    display: flex;
    flex-direction: column;
}

input[type="email"], input[type="password"], input[type="text"] {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

button {
    background: #007BFF;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #0056b3;
}

p {
    margin: 10px 0;
}

.error {
    color: red;
}

.success {
    color: green;
}
