* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url("obrazky/bg.png");
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center; 
    width: 1440px; 
    padding: 20px;
    gap: 80px; 
    margin-left: 135px;
}

.login-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    width: 420px; 
    color: white;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.3), 0px 6px 25px rgba(0, 0, 0, 0.3);
}

h2 {
    font-size: 18px;
    font-weight: lighter;
    color: #F25019;
    text-align: left;
}

h3 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 38px;
    color: #333333;
    font-weight: bold;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

label {
    text-align: left;
    font-size: 14px;
    color: #333333;
}

input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    font-size: 14px;
    color: black;
    border: 1px solid white;
    background: white;
}

input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

a {
    font-size: 12px;
    color: #AE4700;
    text-decoration: none;
    text-align: right;
}

p {
    color: #333333;
}

button {
    background-color: #F25019;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    margin-top: 12px;
}

.social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social button {
    width: 70px;
    height: 40px;
    border: none;
    border-radius: 20px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.social button:hover {
    transform: scale(1.05);
}

.google img,
.github img,
.facebook img {
    width: 20px;
    height: 20px;
}

.register-text {
    font-size: 12px;
    font-family: Arial;
    padding-top: 15px;
}

.bold-text {
    font-weight: bold;
    color: #AE4700;
}

.password-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.password-container input {
    flex: 1;
    padding-right: 35px;
}

.password-container input[type="checkbox"] {
    display: none;
}

.toggle-password {
    position: absolute;
    right: 10px;
    width: 20px;
    height: 20px;
    background: url('images/close-eye.png') no-repeat center;
    background-size: contain;
    cursor: pointer;
}

.password-container input[type="checkbox"]:checked + input {
    font-family: monospace;
    font-size: 16px;
}

.password-container input[type="checkbox"]:checked + input + .toggle-password {
    background: url('images/open-eye.png') no-repeat center;
    background-size: contain;
}

.image {
    background-image: url('obrazky/sovicka.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 550px; 
    width: 550px; 
    flex-shrink: 0; 
}