.login_container {
    width: 100%;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.detail-box {
    text-align: center;
}

.heading_container{
    text-align: center;
}

.heading_container h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    width: 100%;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #555;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #cd5c5c;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

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

.success{
    color: green;
    font-weight: bold;
    padding-bottom: 5px;
}

.error{
    color: red;
    font-weight: bold;
}