* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Space Grotesk', sans-serif;
    
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.wrapper {
    width: 90%;
    max-width: 1000px;
    height: 600px;
    display: flex;
    /* border: 2px dashed #ccc; */
    border-radius: 12px;
    overflow: hidden;
}

.left {
    flex: 1;
    /* padding: 40px; */
    display: flex;
    flex-direction: column;
    justify-content: start;
    /* border-right: 2px dashed #ccc; */
}

.right {
    flex: 1;
    /* background: #f8f8f8; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-left: 2px dashed #ccc; */
}

.logo {
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: bold;
    color: orange;
    /* border: 1px dashed red; */
    width: max-content;
}

.form-area {
    margin-top: 80px;
    /* border: 1px dashed blue; */
    padding:0 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
}

.form-area .title{
    margin-bottom: 20px;
    /* border: 1px dashed blue; */
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* padding: 20px; */
   
}

.checkbox-row {
    width: 100%;
    display: flex;
    /* background-color: red; */
    align-items: center;
    vertical-align: middle;
    justify-content: space-between;
    margin-bottom: 30px;
    margin-top: 10px;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background-color: orange;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.image-placeholder {
    width: 80%;
    height: 80%;
    /* border: 2px dashed green; */
    display: flex;
    background-size: cover;
    background-image: url('/img/loginframe.png');
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #999;
}
.forgot{
    text-decoration: none;
    color: #FF8682;
}