*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    font-size: 62.5%;
}

body {
    font-family: "Poppins", sans-serif;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin: 0 auto;
    width: 100%;
    padding: 4rem 4rem;
    justify-content: center;
}
.container > * {
    width: 100%;
    max-width: 500px;
    min-width: 200px;
}

.container .logo img {
    width: 16rem;
    height: auto;
    margin-bottom: 3rem;
    margin-left: -1rem;
}
.container .logo,
.container h1 {
    width: 100%;
    text-align: left;
}

.container h2 {
    font-size: 3.2rem;
    font-weight: 800;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.2;
}

.container .social-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 500px;
    min-width: 200px;
}

.container .social-buttons button {
    border: none;
    background-color: #fff;
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.container .input-email {
    position: relative;
    width: 100%;
    max-width: 500px;
    min-width: 200px;
    margin-bottom: 3rem;
}
.container .input-password {
    position: relative;
    width: 100%;
    max-width: 500px;
    min-width: 200px;
    margin-bottom: 1.5rem;
}

.svg-email {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.svg-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
    cursor: pointer;
}
.svg-password:hover {
    cursor: pointer;
}

.container .input-email input,
.container .input-password input {
    width: 100%;
    max-width: 500px;
    min-width: 200px;
    padding: 15px;
    border: 1px solid #000;
    font-size: 1.6rem;
    padding-left: 2.5rem;
}

.container .input-email input::placeholder,
.container .input-password input::placeholder {
    color: #000;
    font-size: 16px;
    font-style: normal;
}

.container form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.remember-me-container {
  display: flex;
  justify-content: space-between; 
  align-items: center; 
  width: 100%;
  
}

.remember-me label {
display: flex;
  cursor: pointer;
  font-size: 14px;
  color: #333;
}

.forgot-password {
  font-size: 14px;
  text-decoration: none;
  color: #333;
}

.forgot-password:hover {
  text-decoration: underline;
}



.container .sign-in-btn {
    width: 20rem;
    padding: 15px;
    background-color: #000;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin: 4rem 0 4rem 0;
}
.container .sign-in-btn:hover {
    background-color: #6c006c;
    transition: background-color 0.3s ease;
}

.container .signup-text {
    padding: 20px;
    padding-left: 3rem;
    background-color: #f8e5f8;

    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
}
.container .signup-text .signup-line1 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.container .signup-text a {
    color: #000;
    font-size: 1.4rem;
    font-weight: 800;
}

.container .signup-text a:hover {
    color: #4e4e4e;
    transition: 0.3s ease-out;
}

.container .guide-btn {
    width: 20rem;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    pointer-events: auto;
    text-decoration: none;
    color: #000;
    text-align: center;
}
.container .guide-btn:hover {
    background-color: #6c006c;
    color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.alert {
    width: 100%;
    max-width: 500px;
    padding: 1.2rem 1.6rem;
    font-size: 1.4rem;
    font-family: "Poppins", sans-serif;
    border-left: 4px solid;
    margin-bottom: 2rem;
}

.alert-success {
    background-color: #f0faf0;
    border-color: #2e7d32;
    color: #2e7d32;
}

.alert-info {
    background-color: #f8e5f8;
    border-color: #6c006c;
    color: #6c006c;
}

.alert-error {
    background-color: #fff4f4;
    border-color: #c62828;
    color: #c62828;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}



.custom-checkbox-1 input[type="checkbox"] {
    display: none;
}

.custom-checkbox-1 .checkmark {
    width: 20px;
    height: 20px;
    background-color: #eee;
    border: 1px solid #ddd;
    margin-right: 5px;
    position: relative;
    transition: all 0.3s ease;
}

.custom-checkbox-1 input[type="checkbox"]:checked + .checkmark {
    background-color: #6c006c;
    border-color: #6c006c;
}

.custom-checkbox-1 .checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox-1 input[type="checkbox"]:checked + .checkmark::after {
    display: block;
}
.image-section {
    display: none;
}

@media (min-width: 900px) {
    .desktop-layout {
        display: flex;
        min-height: 100vh;
        max-width: 1400px;
        margin: 0 auto;
    }

    .image-section {
        flex: 40%;
        display: flex;
        align-items: center;
        justify-content: right;
        
    }

    .image-section img {
        display: block;
       width: 100%;
    }

    .container {
        flex: 60%;
        
    }
}
