/* TeleCallerLogin.css */

body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(to bottom,  rgb(147, 233, 204),#2980b9);
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login-container {
    background: linear-gradient(to bottom,  rgb(147, 233, 204),#2980b9);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h2 {
    margin-bottom: 20px;
}

#login-form {
    display: flex;
    flex-direction: column;
}

input[type="text"],
input[type="password"] {
    margin: 5px 0;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 100%;
    box-sizing: border-box;
}

button[type="submit"] {
    margin: 10px 0;
    padding: 10px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

#login-result {
    margin-top: 10px;
    color: #ff0000;
}
