/* Reset and general styling */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 600;
    background: url('img/jp4.jpg') ; 
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container for login form */
.container {
    width: 100%;
    max-width: 800px; /* Increased max-width for PC */
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 1rem;
}

/* Login form styling */
.login-form {
    width: 100%;
}

.logo {
    text-align: center;
    margin-bottom: 1rem;
}

.logo img {
    height: 100px;
    width: 120px;
}

.radio-buttons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1rem;
}

.radio-buttons label {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
}

.radio-buttons input {
    margin-right: 0.5rem;
}

.c {
    text-align: center;
}

.d {
    color: #000;
}

/* Form fields */
.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
}

.form-group label {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.form-group input {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.buttons button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.signupbtn {
    background-color: #4CAF50;
    color: white;
}

.cancelbtn {
    background-color: #f44336;
    color: white;
}

.hr-top, .hr-bottom {
    border: none;
    border-top: 1px solid #ccc;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.links a {
    color: #4a66d7;
    text-decoration: none;
    font-size: 0.8rem;
}

.contact-info {
    text-align: center;
    font-size: 0.8rem;
    color: #333;
    margin-top: 0.75rem;
}

.corner-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.corner-icons .item {
    display: flex;
    align-items: center;
}

.corner-icons .icon {
    margin-left: 0.5rem;
}

/* Responsive design */
@media (min-width: 769px) {
    .container {
        max-width: 800px; /* Increased width for larger screens */
        padding: 2rem;
    }

    .radio-buttons {
        justify-content: flex-start;
        gap: 1.5rem;
    }

    .buttons {
        justify-content: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%; /* Full width on mobile */
        padding: 1rem;
    }

    .radio-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
}
