/* General Body Styles */
.body_deg {
    background: white;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Form Container */
.form_deg {
    border: 1px solid #288fd4;
    background: cornsilk;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center; /* Centers text inside the form container */
}

/* Title Styling */
.title_deg {
    font-size: 24px;
    margin-bottom: 20px;
    background-color: #9ecdec;
    width: 100%;
}

/* Form Elements Styling */
.login_form {
    display: flex;
    flex-direction: column;
    padding: 0 10px;
}

/* Add margin to children to simulate spacing */
.login_form > div {
    margin-bottom: 15px;
}

/* Remove margin from the last element */
.login_form > div:last-child {
    margin-bottom: 0;
}

/* Label and Input Styling */
.label_deg {
    margin-bottom: 5px;
    display: block;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

input[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Link Styling */
.title_deg a {
    color: #007bff;
    text-decoration: none;
}

.title_deg a:hover {
    text-decoration: underline;
}