/* Reset styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: OpenSans, sans-serif;
}

/* Form container */
.custom-form {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}


/* Row of fields */
.fields-row {
    display: flex;
    gap: 10px;
}

/* Form groups inside the row */
.form-group {
    display: flex;
    flex-direction: column;
    flex: 1; /* all inputs share equal width */
}

.form-logo {
    max-width: 250px;
    margin: 30px 0 10px 0;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
    color: #000;
	text-align: left;
}

input {
    padding: 20px 20px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius:8px;
    font-size: 14px;
}

input:focus {
    background: #ecfcff;
	border-color: #808080;
    outline: none;
}

/* Button container below the fields row */
.button-container {
    text-align: center;
}

.submit-btn {
	width: 300px;
    background-color: #8bc34a;
    border: 2px solid white; /* corrected border */
    color: white;
    padding: 23px 90px;
    border-radius: 50px;
    font-size: 18px;
	font-weight: bold;  /* makes text bold */
    cursor: pointer;
    transition: background 0.6s;
}

.submit-btn:hover {
    background-color: #01193d;
}

/* =========================
   Status Icons
========================= */

.status-icon {
    max-width: 100px;
    margin: 10px 0;
}

/* =========================
   Text Styling
========================= */
.success {
	display: block;
    margin: 10px 0 15px 0;
    font-size: 20px;
    color: #000000;
}

.first-line {
    display: block;
    margin: 10px 0 15px 0;
    font-size: 18px;
    color: #808080;
}

.second-line {
    display: block;
    margin: 5px 0;
    font-size: 16px;
    color: #303030;
}