.container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 20px;
    max-width: 1200px;
}

.col-6 {
    width: 48%;
    box-sizing: border-box;
    margin-bottom: 20px;
}

h3, h4, h6 {
    color: #333;
	font-size: 0.8em;
}

form {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

form:hover {
    transform: scale(1.02);
}

form p {
    text-align: center;
    font-weight: bold;
}

input[type="text"], input[type="email"], input[type="password"], input[type="tel"], select {
    width: 95%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

input::placeholder {
    color: #888;
}

button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #28a745;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

button:hover {
    background-color: #218838;
}

.alert {
    padding: 15px;
    background-color: #f44336;
    color: white;
    margin-bottom: 20px;
    border-radius: 5px;
}

.text-center {
    text-align: center;
}

#captcha {
    display: block;
    margin: 10px 0;
}

#refresh-captcha {
    cursor: pointer;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
}

.customGPlusSignIn {
    background-color: #4285f4;
    display: inline-block;
    border: thin solid #4285f4;
    transition: all 200ms ease-in-out;
    height: 46px;
    width: 100%;
    margin-top: 20px;
    border-radius: 5px;
    cursor: pointer;
}

.customGPlusSignIn .icon {
    background: url("/image/Google_Log.png") transparent 3px 3px no-repeat;
    background-size: 37px 37px;
    background-color: white;
    display: inline-block;
    vertical-align: middle;
    width: 44px;
    height: 44px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.customGPlusSignIn .buttonText {
    color: white;
    font-size: 1.3em;
    padding: 10px 16px;
    vertical-align: middle;
}

.customGPlusSignIn:hover {
    box-shadow: 0 0 3px 3px rgba(66, 133, 244, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .col-6 {
        width: 100%;
    }
}

a.forgot-password {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-top: 10px;
    text-align: right;
}

a.forgot-password:hover {
    text-decoration: underline;
}