
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.134), rgba(0, 0, 0, 0.5)),
                url('/images/center-bmw.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    position: absolute;
    top: 40px;
    left: 40px;
    width: 100px;
    height: auto;
}

.login-container {
    background: rgba(255, 255, 255, 0.268);
    padding: 40px;
    border-radius: 16px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.welcome-text {
    margin-bottom: 30px;
}

.welcome-text h1 {
    font-size: 24px;
    color: #000000;
    font-weight: 500;
}

.welcome-text span {
    color: #4CAF50;
    font-weight: 600;
}



.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #000000;
    font-size: 14px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}


.sendOTP-button {
    width: 100%;
    padding: 14px;
    background-color: #1f2937;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.sendOTP-button:hover {
    background-color: #374151;
}


@media (max-width: 768px) {
    .login-container {
        margin: 20px;
        padding: 30px;
    }
}
