/* app/assets/stylesheets/custom_devise_styles.css */



.devise-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

.devise-header {
    text-align: center;
    margin-bottom: 20px;
}

.devise-form {
    text-align: left;
}

.devise-form label {
    display: block;
    margin-bottom: 8px;
}

.devise-form input[type="email"],
.devise-form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

.devise-form input[type="submit"] {
    background-color: #4caf50;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.devise-form input[type="submit"]:hover {
    background-color: #45a049;
}
