/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: Arial, sans-serif;
    background-color: #053262;
}

/* Layout Container */
.container {
    display: flex;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* Left Side - Background Image */
.left-container {
    width: 50%;
    background: url('images/login-background.webp') no-repeat center center/cover;
    min-height: 100vh;
}

/* Right Side - Form Container */
.right-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #053262;
    padding: 20px;
}

/* Logo */
.logo {
    margin-bottom: 20px;
    text-align: center;
}

.logo img {
    width: 250px;
    max-width: 100%;
}

/* Form Box */
.form-box {
    width: 100%;
    max-width: 400px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Heading */
h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 25px;
}

/* Form */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Inputs and Labels */
label {
    font-size: 14px;
    color: #555;
    text-align: left;
}

input {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

/* Button */
button {
    padding: 12px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #0056b3;
}

/* Terms & Conditions Inline */
.terms-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 15px;
  font-size: 0.9em;
  color: #333;
  flex-wrap: nowrap;
}

.terms-inline input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin: 0;
}

.terms-inline label {
  margin: 0;
  display: flex;
  align-items: center;
}

.terms-inline label span {
  white-space: nowrap;
}

.terms-inline a {
  color: #0066cc;
  text-decoration: underline;
}






/* Register Link */
a {
    font-size: 13px;
    color: #03101e;
    text-decoration: none;
    display: block;
    margin-top: 15px;
    text-align: center;
}

a:hover {
    text-decoration: underline;
}

/* SweetAlert Customization */
.custom-swal-popup {
    width: 500px !important;
    padding: 15px !important;
}

.custom-swal-title {
    font-size: 16px !important;
}

.custom-swal-content {
    font-size: 12px !important;
}

.custom-swal-button {
    font-size: 14px !important;
    padding: 6px 12px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left-container {
        width: 100%;
        height: 200px;
    }

    .right-container {
        width: 100%;
        padding: 20px;
    }

    .form-box {
        width: 100%;
        max-width: 90%;
    }

    .logo img {
        width: 180px;
    }
}
