* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    background-color: #fff;
    background-image: url(../img/bg.png);
    background-size: 50%   ;
    background-position: right ;
    background-repeat: no-repeat;
   

}

.container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
 
}

.logo {
    width: 200px;
    margin-bottom: 20px;
}

h2 {
    margin-bottom: 20px;
    font-weight: normal;
}

.red-text {
    color: #e63946;
}

.blue-text {
    color: #0077b6;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background-color: #e6f2ff;
    margin-bottom: 10px !important;
}

input[type="email"]:focus-visible {
    border: 1px solid #e0e0e0;
}

.button-group {
    width: 100%;
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.btn-register, .btn-login {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    font-weight: bold;
}

.btn-register {
    background-color: #0077b6;
}

.btn-login {
    background-color: #0077b6;
}

.btn-register:hover, .btn-login:hover {
    opacity: 0.9;
}

p {
    margin-top: 15px;
    color: #000;
}

a {
    color: #0077b6;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.login-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}


@media screen and (max-width: 800px) {
    body {
        background-image: none;
    }

    .container {
        justify-content: center;
    }
}